home *** CD-ROM | disk | FTP | other *** search
- /*
- ** $VER: CountWords.bed 1.0 (02.01.96)
- **
- ** Count the number of words in the document
- **
- ** Modified by Marco Negri
- */
-
- OPTIONS RESULTS
-
- SetDisplayLock ON
- SetInputLock ON
-
- SetBookmark 0
- SetStatusBar "Counting..."
-
- count = 0
- MoveSOF
-
- DO UNTIL RC ~= 0
- MoveNextWord
- count = count + 1
- END
-
- MoveBookmark 0
- ClearBookmark 0
-
- SetDisplayLock OFF
- SetInputLock OFF
-
- SetStatusBar "Counted " || count || " words"
-